6277ddb5a773936a9c9ea9c019cfed4b62f622b5,examples/controlexample/controlexample-core/src/main/java/org/eclipse/swt/examples/controlexample/Tab.java,Tab,createColorAndFontGroup,#,403
Before Change
*/
void createColorAndFontGroup () {
/* Create the group. */
Group result = new Group (controlGroup, SWT.NONE);
result.setLayoutData(new GridData (SWT.FILL, SWT.FILL, false, false));
result.setText(ControlExample.getResourceString ("Colors"));
colorGroup = result;
colorGroup.setLayout (new GridLayout (2, true));
// colorAndFontTable = new Table(colorGroup, SWT.BORDER | SWT.V_SCROLL);
colorAndFontTable = new List(colorGroup, SWT.SINGLE);
colorAndFontTable.setLayoutData(new GridData(SWT.FILL, SWT.BEGINNING, true, false, 2, 1));
After Change
*/
void createColorAndFontGroup () {
/* Create the group. */
colorGroup = new Group(controlGroup, SWT.NONE);
colorGroup.setLayout (new GridLayout (2, true));
colorGroup.setLayoutData (new GridData (SWT.FILL, SWT.FILL, false, false));
colorGroup.setText (ControlExample.getResourceString ("Colors"));
colorAndFontTable = new Table(colorGroup, SWT.BORDER | SWT.V_SCROLL);